Question
1- Serial Implementation
Note: do all this work on Neumann.
Note the following
# We used the qualifier -std=c++0x – this tells the compiler to use the C++11
standard.
# Note that the randoms program creates an object of the class std::mt19937, and passes a seed value to the constructor. Different seeds produce different sequences – this will be important when we parallelize the program.
# The function randone takes a reference to a std::mt19937 as input, and returns a floating point random number between 0 and 1. The mt19937 class overloads the () operator, so it can be called as a function (this is called a function object or functor). The () operator returns a random 32-bit integer – the max() function gives its maximum possible value.
# adapt randoms.cpp to calculate π using Monte-carlo integration. You need to do the following:
# Copy randoms.cpp to a suitably named new file (e.g. pimonte.cpp).
# Seed the random number generator, and initialize an integer variable with the total number of trials: try 1,000,000 to start with.
# Initialize an integer variable (to zero) for the number of hits.
# In a for loop, perform the trials – pick two random numbers between 0 and 1 (using randone) – call these x and y.
# If x*x + y*y <= 1, increment your hit count.
# At the end of the loop, print out the estimate of π. This will be something like:
float pi = 4.0f * (float)nHits / (float)nTrials;

2- Parallelizing using MPI
For testing the code with a few nodes, you can use mpirun from the command line on the head node (that’s the cluster node you log in to). Note that you can ask for as many processors as you want, but once you go over the number of processors on the head node (12) the processes will no longer all run in parallel. For example, the command
mpirun -np 8 ./randoms will run the code in interactive mode on 8 nodes. Don’t use this for the timing tests we will be doing later – the results would be unreliable because you won’t have exclusive access to the processors as you do on the compute nodes.
Here’s what you need to do:
# Again, start with a new file (e.g. MPI_pimonte.cpp).
# Make sure you have the mpi.h include, MPI_Init and MPI_Finalize in place
# Make sure you have a properly configured shell script for running on the queue, although you can use mpirun while you are getting the code working (see above)
# Make sure each process seeds the random number generator with a different value – use the process rank to do this.
# Use MPI_Send and MPI_Receive to transmit the counts to process 0 – each process apart from 0 will send a single MPI_INT to process 0. Process 0 will loop through all the other ranks picking up the messages using MPI_Recv.
# Rank 0 should output the results.
3- Timing using MPI_Wtime
The MPI function MPI_Wtime() returns a timer in seconds –Now time the execution using of your code using MPI_Wtime and conduct the following experiment.

# Time the execution using 1, 2, 4 and 8 processes – your MPI code should work with one node, if not think again about how it was implemented. You should set the number of trials sufficiently large so that the execution on one node takes a few seconds.
#Calculate the parallel efficiency for each number of processes > 1.
# Find the API call which gives the accuracy of the MPI_Wtime function, and find out the value for the MPI implementation on Neumann.
Notes:
# Your working MPI-parallelized Monte-Carlo code.
# A text file containing the results of the timing experiments, and your calculated parallel efficiencies, from timing runs using the batch queues on 1, 2, 4, and 8 processors, along with what you found for the accuracy of MPI_Wtime().

The source code randoms.cpp
#include <iostream>
#include <random>

using namespace std;

float randone( mt19937 &gen )
{
return (float)gen() / (float)gen.max();
}

int main()
{
int seed = 12345;
// C++ 11 Mersenne Twister random number generator
mt19937 generator( seed );

for ( int i = 0; i < 10; i++ )
{
float x = randone( generator );
cout << x << "\n";
}

return 0;
}
Solution Preview

These solutions may offer step-by-step problem-solving explanations or good writing examples that include modern styles of formatting and construction of bibliographies out of text citations and references.
Students may use these solutions for personal skill-building and practice.
Unethical use is strictly forbidden.

#include <cstdlib>
#include <random>
#include <iostream>
#include <mpi.h>
using namespace std;

const long TRIALS = 100000000;

float randone(mt19937 &gen) {
    return (float) gen() / (float) gen.max();
}

/**
* return number of hit
* @param nTrials number of trial
* @param generator random generator
* @return
*/
long hits(long nTrials, mt19937 &generator) {
    long nHits = 0;

    float x, y;

    for (long i = 0; i < nTrials; i++) {
       x = randone(generator);
       y = randone(generator);
       if (x * x + y * y <= 1.0) {// it's in the 1st quarter of the circle
            // increase hit point
            nHits++;
       }
    }

    return nHits;
}
This is only a preview of the solution.
Please use the purchase button to see the entire solution.
By purchasing this solution you'll be able to access the following files:
Solution.zip
Purchase Solution
$88.00 $44
Google Pay
Amazon
Paypal
Mastercard
Visacard
Discover
Amex
View Available Computer Science Tutors 529 tutors matched
Ionut
(ionut)
Hi! MSc Applied Informatics & Computer Science Engineer. Practical experience in many CS & IT branches.Research work & homework
5/5 (5,654+ sessions)
2 hours avg response
Leo
(Leo)
Hi! I have been a professor in New York and taught in a math department and in an applied math department.
4.9/5 (5,652+ sessions)
2 hours avg response
Pranay
(math1983)
Ph.D. in mathematics and working as an Assistant Professor in University. I can provide help in mathematics, statistics and allied areas.
4.6/5 (5,512+ sessions)
1 hour avg response

Similar Homework Solutions

8.1.0PHP Version413msRequest Duration45MBMemory UsageGET college-homework-library/{category}/{subject}/{id}Route
    • Booting (280ms)time
    • Application (133ms)time
    • 1 x Booting (67.69%)
      280ms
      1 x Application (32.3%)
      133ms
      • Illuminate\Routing\Events\Routing (1.37ms)
      • Illuminate\Routing\Events\RouteMatched (553μs)
      • Illuminate\Foundation\Events\LocaleUpdated (4.26ms)
      • eloquent.booting: App\Models\HomeworkLibrary\HomeworkLibrary (179μs)
      • eloquent.booted: App\Models\HomeworkLibrary\HomeworkLibrary (163μs)
      • Illuminate\Database\Events\ConnectionEstablished (911μs)
      • Illuminate\Database\Events\StatementPrepared (12.89ms)
      • Illuminate\Database\Events\QueryExecuted (1.45ms)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (111μs)
      • eloquent.booting: App\Models\Subject (106μs)
      • eloquent.booted: App\Models\Subject (42μs)
      • Illuminate\Database\Events\StatementPrepared (1.61ms)
      • Illuminate\Database\Events\QueryExecuted (935μs)
      • eloquent.retrieved: App\Models\Subject (109μs)
      • eloquent.booting: App\Models\HomeworkLibrary\HomeworkLibraryFile (120μs)
      • eloquent.booted: App\Models\HomeworkLibrary\HomeworkLibraryFile (49μs)
      • Illuminate\Database\Events\StatementPrepared (776μs)
      • Illuminate\Database\Events\QueryExecuted (758μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (71μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (15μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (8μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (6μs)
      • eloquent.booting: App\Models\SubjectCat (413μs)
      • eloquent.booted: App\Models\SubjectCat (40μs)
      • Illuminate\Database\Events\StatementPrepared (564μs)
      • Illuminate\Database\Events\QueryExecuted (879μs)
      • eloquent.retrieved: App\Models\SubjectCat (84μs)
      • Illuminate\Cache\Events\CacheHit (10.76ms)
      • Illuminate\Cache\Events\CacheMissed (674μs)
      • Illuminate\Database\Events\StatementPrepared (873μs)
      • Illuminate\Database\Events\QueryExecuted (2.14ms)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (90μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (17μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (8μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (7μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (6μs)
      • Illuminate\Database\Events\StatementPrepared (699μs)
      • Illuminate\Database\Events\QueryExecuted (940μs)
      • eloquent.retrieved: App\Models\Subject (225μs)
      • Illuminate\Cache\Events\KeyWritten (948μs)
      • Illuminate\Database\Events\StatementPrepared (1.74ms)
      • Illuminate\Database\Events\QueryExecuted (963μs)
      • Illuminate\Database\Events\StatementPrepared (919μs)
      • Illuminate\Database\Events\QueryExecuted (940μs)
      • Illuminate\Database\Events\StatementPrepared (721μs)
      • Illuminate\Database\Events\QueryExecuted (952μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (46μs)
      • Illuminate\Cache\Events\CacheHit (570μs)
      • creating: homework.show (275μs)
      • composing: homework.show (113μs)
      • creating: components.breadcrumbs (404μs)
      • composing: components.breadcrumbs (144μs)
      • Illuminate\Database\Events\StatementPrepared (1.2ms)
      • Illuminate\Database\Events\QueryExecuted (1.01ms)
      • eloquent.retrieved: App\Models\SubjectCat (90μs)
      • Illuminate\Cache\Events\CacheHit (4.09ms)
      • Illuminate\Cache\Events\CacheHit (221μs)
      • Illuminate\Cache\Events\CacheHit (214μs)
      • Illuminate\Cache\Events\CacheHit (188μs)
      • Illuminate\Cache\Events\CacheHit (202μs)
      • Illuminate\Cache\Events\CacheHit (171μs)
      • Illuminate\Cache\Events\CacheHit (252μs)
      • Illuminate\Cache\Events\CacheHit (192μs)
      • Illuminate\Cache\Events\CacheHit (205μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (189μs)
      • Illuminate\Cache\Events\CacheHit (167μs)
      • Illuminate\Cache\Events\CacheHit (190μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (246μs)
      • Illuminate\Cache\Events\CacheHit (200μs)
      • Illuminate\Cache\Events\CacheHit (213μs)
      • Illuminate\Cache\Events\CacheHit (188μs)
      • Illuminate\Cache\Events\CacheHit (213μs)
      • Illuminate\Cache\Events\CacheHit (189μs)
      • Illuminate\Cache\Events\CacheHit (212μs)
      • Illuminate\Cache\Events\CacheHit (187μs)
      • Illuminate\Cache\Events\CacheHit (228μs)
      • Illuminate\Cache\Events\CacheHit (171μs)
      • Illuminate\Cache\Events\CacheHit (197μs)
      • Illuminate\Cache\Events\CacheHit (166μs)
      • Illuminate\Cache\Events\CacheHit (226μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (221μs)
      • Illuminate\Cache\Events\CacheHit (198μs)
      • Illuminate\Cache\Events\CacheHit (218μs)
      • Illuminate\Cache\Events\CacheHit (194μs)
      • Illuminate\Cache\Events\CacheHit (210μs)
      • Illuminate\Cache\Events\CacheHit (168μs)
      • Illuminate\Cache\Events\CacheHit (213μs)
      • Illuminate\Cache\Events\CacheHit (189μs)
      • Illuminate\Cache\Events\CacheHit (206μs)
      • Illuminate\Cache\Events\CacheHit (170μs)
      • Illuminate\Cache\Events\CacheHit (191μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (163μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (163μs)
      • Illuminate\Cache\Events\CacheHit (211μs)
      • Illuminate\Cache\Events\CacheHit (187μs)
      • Illuminate\Cache\Events\CacheHit (204μs)
      • Illuminate\Cache\Events\CacheHit (209μs)
      • Illuminate\Cache\Events\CacheHit (232μs)
      • Illuminate\Cache\Events\CacheHit (191μs)
      • Illuminate\Cache\Events\CacheHit (211μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (209μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (218μs)
      • Illuminate\Cache\Events\CacheHit (173μs)
      • Illuminate\Cache\Events\CacheHit (201μs)
      • Illuminate\Cache\Events\CacheHit (167μs)
      • Illuminate\Cache\Events\CacheHit (194μs)
      • Illuminate\Cache\Events\CacheHit (165μs)
      • Illuminate\Cache\Events\CacheHit (191μs)
      • Illuminate\Cache\Events\CacheHit (165μs)
      • Illuminate\Cache\Events\CacheHit (214μs)
      • Illuminate\Cache\Events\CacheHit (191μs)
      • Illuminate\Cache\Events\CacheHit (210μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (207μs)
      • Illuminate\Cache\Events\CacheHit (220μs)
      • Illuminate\Cache\Events\CacheHit (230μs)
      • Illuminate\Cache\Events\CacheHit (191μs)
      • Illuminate\Cache\Events\CacheHit (208μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (208μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (209μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (211μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (211μs)
      • Illuminate\Cache\Events\CacheHit (183μs)
      • Illuminate\Cache\Events\CacheHit (208μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (207μs)
      • Illuminate\Cache\Events\CacheHit (183μs)
      • Illuminate\Cache\Events\CacheHit (207μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (208μs)
      • Illuminate\Cache\Events\CacheHit (236μs)
      • Illuminate\Cache\Events\CacheHit (219μs)
      • Illuminate\Cache\Events\CacheHit (175μs)
      • Illuminate\Cache\Events\CacheHit (197μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (211μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (214μs)
      • Illuminate\Cache\Events\CacheHit (163μs)
      • Illuminate\Cache\Events\CacheHit (181μs)
      • Illuminate\Cache\Events\CacheHit (157μs)
      • Illuminate\Cache\Events\CacheHit (189μs)
      • Illuminate\Cache\Events\CacheHit (154μs)
      • Illuminate\Cache\Events\CacheHit (180μs)
      • Illuminate\Cache\Events\CacheHit (157μs)
      • Illuminate\Cache\Events\CacheHit (210μs)
      • Illuminate\Cache\Events\CacheHit (174μs)
      • Illuminate\Cache\Events\CacheHit (198μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (220μs)
      • Illuminate\Cache\Events\CacheHit (189μs)
      • Illuminate\Cache\Events\CacheHit (222μs)
      • Illuminate\Cache\Events\CacheHit (251μs)
      • Illuminate\Cache\Events\CacheHit (218μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (209μs)
      • Illuminate\Cache\Events\CacheHit (190μs)
      • Illuminate\Cache\Events\CacheHit (891μs)
      • Illuminate\Cache\Events\CacheHit (174μs)
      • Illuminate\Cache\Events\CacheHit (194μs)
      • Illuminate\Cache\Events\CacheHit (166μs)
      • Illuminate\Cache\Events\CacheHit (188μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (188μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (236μs)
      • Illuminate\Cache\Events\CacheHit (206μs)
      • Illuminate\Cache\Events\CacheHit (202μs)
      • Illuminate\Cache\Events\CacheHit (167μs)
      • Illuminate\Cache\Events\CacheHit (228μs)
      • Illuminate\Cache\Events\CacheHit (191μs)
      • Illuminate\Cache\Events\CacheHit (213μs)
      • Illuminate\Cache\Events\CacheHit (159μs)
      • Illuminate\Cache\Events\CacheHit (180μs)
      • Illuminate\Cache\Events\CacheHit (154μs)
      • Illuminate\Cache\Events\CacheHit (176μs)
      • Illuminate\Cache\Events\CacheHit (154μs)
      • Illuminate\Cache\Events\CacheHit (175μs)
      • Illuminate\Cache\Events\CacheHit (154μs)
      • Illuminate\Cache\Events\CacheHit (191μs)
      • Illuminate\Cache\Events\CacheHit (170μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (163μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • Illuminate\Cache\Events\CacheHit (245μs)
      • Illuminate\Cache\Events\CacheHit (175μs)
      • Illuminate\Cache\Events\CacheHit (203μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • Illuminate\Cache\Events\CacheHit (183μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (183μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • Illuminate\Cache\Events\CacheHit (183μs)
      • Illuminate\Cache\Events\CacheHit (168μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (174μs)
      • Illuminate\Cache\Events\CacheHit (223μs)
      • Illuminate\Cache\Events\CacheHit (218μs)
      • Illuminate\Cache\Events\CacheHit (206μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (201μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (234μs)
      • Illuminate\Cache\Events\CacheHit (179μs)
      • Illuminate\Cache\Events\CacheHit (192μs)
      • Illuminate\Cache\Events\CacheHit (163μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (183μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (183μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • Illuminate\Cache\Events\CacheHit (220μs)
      • Illuminate\Cache\Events\CacheHit (190μs)
      • Illuminate\Cache\Events\CacheHit (210μs)
      • Illuminate\Cache\Events\CacheHit (182μs)
      • Illuminate\Cache\Events\CacheHit (199μs)
      • Illuminate\Cache\Events\CacheHit (165μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (163μs)
      • Illuminate\Cache\Events\CacheHit (192μs)
      • Illuminate\Cache\Events\CacheHit (187μs)
      • Illuminate\Cache\Events\CacheHit (223μs)
      • Illuminate\Cache\Events\CacheHit (169μs)
      • Illuminate\Cache\Events\CacheHit (198μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (216μs)
      • Illuminate\Cache\Events\CacheHit (172μs)
      • Illuminate\Cache\Events\CacheHit (202μs)
      • Illuminate\Cache\Events\CacheHit (170μs)
      • Illuminate\Cache\Events\CacheHit (218μs)
      • Illuminate\Cache\Events\CacheHit (192μs)
      • Illuminate\Cache\Events\CacheHit (202μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (252μs)
      • Illuminate\Cache\Events\CacheHit (172μs)
      • Illuminate\Cache\Events\CacheHit (187μs)
      • Illuminate\Cache\Events\CacheHit (163μs)
      • Illuminate\Cache\Events\CacheHit (201μs)
      • Illuminate\Cache\Events\CacheHit (241μs)
      • Illuminate\Cache\Events\CacheHit (951μs)
      • Illuminate\Cache\Events\CacheHit (176μs)
      • Illuminate\Cache\Events\CacheHit (196μs)
      • Illuminate\Cache\Events\CacheHit (167μs)
      • Illuminate\Cache\Events\CacheHit (189μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (188μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (187μs)
      • Illuminate\Cache\Events\CacheHit (167μs)
      • Illuminate\Cache\Events\CacheHit (213μs)
      • Illuminate\Cache\Events\CacheHit (156μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (188μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (231μs)
      • Illuminate\Cache\Events\CacheHit (256μs)
      • Illuminate\Cache\Events\CacheHit (196μs)
      • Illuminate\Cache\Events\CacheHit (210μs)
      • Illuminate\Cache\Events\CacheHit (168μs)
      • Illuminate\Cache\Events\CacheHit (193μs)
      • Illuminate\Cache\Events\CacheHit (163μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (165μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (187μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (254μs)
      • Illuminate\Cache\Events\CacheHit (176μs)
      • Illuminate\Cache\Events\CacheHit (212μs)
      • Illuminate\Cache\Events\CacheHit (166μs)
      • Illuminate\Cache\Events\CacheHit (187μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (167μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (182μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (191μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • Illuminate\Cache\Events\CacheHit (226μs)
      • Illuminate\Cache\Events\CacheHit (190μs)
      • Illuminate\Cache\Events\CacheHit (199μs)
      • Illuminate\Cache\Events\CacheHit (163μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (163μs)
      • Illuminate\Cache\Events\CacheHit (183μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • Illuminate\Cache\Events\CacheHit (258μs)
      • Illuminate\Cache\Events\CacheHit (284μs)
      • Illuminate\Cache\Events\CacheHit (191μs)
      • Illuminate\Cache\Events\CacheHit (152μs)
      • Illuminate\Cache\Events\CacheHit (170μs)
      • Illuminate\Cache\Events\CacheHit (151μs)
      • Illuminate\Cache\Events\CacheHit (180μs)
      • Illuminate\Cache\Events\CacheHit (154μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (155μs)
      • Illuminate\Cache\Events\CacheHit (174μs)
      • Illuminate\Cache\Events\CacheHit (151μs)
      • Illuminate\Cache\Events\CacheHit (188μs)
      • Illuminate\Cache\Events\CacheHit (152μs)
      • Illuminate\Cache\Events\CacheHit (189μs)
      • Illuminate\Cache\Events\CacheHit (165μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (166μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • Illuminate\Cache\Events\CacheHit (195μs)
      • Illuminate\Cache\Events\CacheHit (167μs)
      • Illuminate\Cache\Events\CacheHit (190μs)
      • Illuminate\Cache\Events\CacheHit (215μs)
      • Illuminate\Cache\Events\CacheHit (204μs)
      • Illuminate\Cache\Events\CacheHit (165μs)
      • Illuminate\Cache\Events\CacheHit (187μs)
      • Illuminate\Cache\Events\CacheHit (163μs)
      • Illuminate\Cache\Events\CacheHit (183μs)
      • Illuminate\Cache\Events\CacheHit (166μs)
      • creating: site.layouts.app (495μs)
      • composing: site.layouts.app (25μs)
      • creating: components.canonical (474μs)
      • composing: components.canonical (104μs)
      • creating: components.open-graph (206μs)
      • composing: components.open-graph (76μs)
      • creating: site.headers.header (308μs)
      • composing: site.headers.header (77μs)
      • Illuminate\Cache\Events\CacheHit (1.91ms)
      • creating: components.footer (93μs)
      • composing: components.footer (101μs)
      • Illuminate\Cache\Events\CacheHit (979μs)
      • Illuminate\Cache\Events\CacheHit (314μs)
      • Illuminate\Cache\Events\CacheHit (268μs)
      • Illuminate\Cache\Events\CacheHit (202μs)
      • Illuminate\Cache\Events\CacheHit (196μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (192μs)
      • Illuminate\Cache\Events\CacheHit (310μs)
      • Illuminate\Cache\Events\CacheHit (381μs)
      • Illuminate\Cache\Events\CacheHit (242μs)
      • Illuminate\Cache\Events\CacheHit (209μs)
      • Illuminate\Cache\Events\CacheHit (193μs)
      • Illuminate\Cache\Events\CacheHit (206μs)
      • Illuminate\Cache\Events\CacheHit (197μs)
      • creating: components.forms.contact-us (281μs)
      • composing: components.forms.contact-us (167μs)
      • creating: components.forms.get-started (179μs)
      • composing: components.forms.get-started (75μs)
      • creating: components.forms.free-tool-download (133μs)
      • composing: components.forms.free-tool-download (67μs)
      • creating: components.forms.claim-free-worksheet (125μs)
      • composing: components.forms.claim-free-worksheet (66μs)
      • creating: components.forms.tutor-subscription-waitlist (124μs)
      • composing: components.forms.tutor-subscription-waitlist (65μs)
      • creating: components.forms.tutor-subscription-join (126μs)
      • composing: components.forms.tutor-subscription-join (65μs)
      • creating: components.forms.tutor-support (124μs)
      • composing: components.forms.tutor-support (67μs)
      • 321 x Illuminate\Cache\Events\CacheHit (19.3%)
        79.74ms
        10 x Illuminate\Database\Events\StatementPrepared (5.32%)
        21.99ms
        10 x Illuminate\Database\Events\QueryExecuted (2.65%)
        10.97ms
        1 x Illuminate\Foundation\Events\LocaleUpdated (1.03%)
        4.26ms
        1 x Illuminate\Routing\Events\Routing (0.33%)
        1.37ms
        1 x Illuminate\Cache\Events\KeyWritten (0.23%)
        948μs
        1 x Illuminate\Database\Events\ConnectionEstablished (0.22%)
        911μs
        1 x Illuminate\Cache\Events\CacheMissed (0.16%)
        674μs
        1 x Illuminate\Routing\Events\RouteMatched (0.13%)
        553μs
        1 x creating: site.layouts.app (0.12%)
        495μs
        1 x creating: components.canonical (0.11%)
        474μs
        1 x eloquent.booting: App\Models\SubjectCat (0.1%)
        413μs
        1 x creating: components.breadcrumbs (0.1%)
        404μs
        2 x eloquent.retrieved: App\Models\Subject (0.08%)
        334μs
        1 x creating: site.headers.header (0.07%)
        308μs
        1 x creating: components.forms.contact-us (0.07%)
        281μs
        1 x creating: homework.show (0.07%)
        275μs
        6 x eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (0.06%)
        239μs
        1 x creating: components.open-graph (0.05%)
        206μs
        1 x eloquent.booting: App\Models\HomeworkLibrary\HomeworkLibrary (0.04%)
        179μs
        1 x creating: components.forms.get-started (0.04%)
        179μs
        2 x eloquent.retrieved: App\Models\SubjectCat (0.04%)
        174μs
        1 x composing: components.forms.contact-us (0.04%)
        167μs
        1 x eloquent.booted: App\Models\HomeworkLibrary\HomeworkLibrary (0.04%)
        163μs
        5 x eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (0.04%)
        146μs
        1 x composing: components.breadcrumbs (0.03%)
        144μs
        1 x creating: components.forms.free-tool-download (0.03%)
        133μs
        1 x creating: components.forms.tutor-subscription-join (0.03%)
        126μs
        1 x creating: components.forms.claim-free-worksheet (0.03%)
        125μs
        1 x creating: components.forms.tutor-subscription-waitlist (0.03%)
        124μs
        1 x creating: components.forms.tutor-support (0.03%)
        124μs
        1 x eloquent.booting: App\Models\HomeworkLibrary\HomeworkLibraryFile (0.03%)
        120μs
        1 x composing: homework.show (0.03%)
        113μs
        1 x eloquent.booting: App\Models\Subject (0.03%)
        106μs
        1 x composing: components.canonical (0.03%)
        104μs
        1 x composing: components.footer (0.02%)
        101μs
        1 x creating: components.footer (0.02%)
        93μs
        1 x composing: site.headers.header (0.02%)
        77μs
        1 x composing: components.open-graph (0.02%)
        76μs
        1 x composing: components.forms.get-started (0.02%)
        75μs
        1 x composing: components.forms.free-tool-download (0.02%)
        67μs
        1 x composing: components.forms.tutor-support (0.02%)
        67μs
        1 x composing: components.forms.claim-free-worksheet (0.02%)
        66μs
        1 x composing: components.forms.tutor-subscription-waitlist (0.02%)
        65μs
        1 x composing: components.forms.tutor-subscription-join (0.02%)
        65μs
        1 x eloquent.booted: App\Models\HomeworkLibrary\HomeworkLibraryFile (0.01%)
        49μs
        1 x eloquent.booted: App\Models\Subject (0.01%)
        42μs
        1 x eloquent.booted: App\Models\SubjectCat (0.01%)
        40μs
        1 x composing: site.layouts.app (0.01%)
        25μs
      14 templates were rendered
      • 1x homework.showshow.blade.phpblade
      • 1x components.breadcrumbsbreadcrumbs.blade.phpblade
      • 1x site.layouts.appapp.blade.phpblade
      • 1x components.canonicalcanonical.blade.phpblade
      • 1x components.open-graphopen-graph.blade.phpblade
      • 1x site.headers.headerheader.blade.phpblade
      • 1x components.footerfooter.blade.phpblade
      • 1x components.forms.contact-uscontact-us.blade.phpblade
      • 1x components.forms.get-startedget-started.blade.phpblade
      • 1x components.forms.free-tool-downloadfree-tool-download.blade.phpblade
      • 1x components.forms.claim-free-worksheetclaim-free-worksheet.blade.phpblade
      • 1x components.forms.tutor-subscription-waitlisttutor-subscription-waitlist.blade.phpblade
      • 1x components.forms.tutor-subscription-jointutor-subscription-join.blade.phpblade
      • 1x components.forms.tutor-supporttutor-support.blade.phpblade
      uri
      GET college-homework-library/{category}/{subject}/{id}
      middleware
      web, utm.parameters
      controller
      App\Http\Controllers\HomeworkLibraryController@show
      namespace
      where
      as
      homework.show
      file
      app/Http/Controllers/HomeworkLibraryController.php:79-176
      10 statements were executed, 4 of which were duplicates, 6 unique. Show only duplicated24.54ms
      • Connection Establishedtwenty4_siteHomeworkLibraryController.php#91
        Backtrace
        • 13. app/Http/Controllers/HomeworkLibraryController.php:91
        • 14. vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 15. vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
        • 16. vendor/laravel/framework/src/Illuminate/Routing/Route.php:260
        • 17. vendor/laravel/framework/src/Illuminate/Routing/Route.php:205
      • select * from `solutionslibrary` where `status` = 'published' and `price` > 0 and `solutionslibrary`.`id` = '26669' limit 1
        13.37mstwenty4_siteHomeworkLibraryController.php#97
        Bindings
        • 0: published
        • 1: 0
        • 2: 26669
        Backtrace
        • 16. app/Http/Controllers/HomeworkLibraryController.php:97
        • 17. vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 18. vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
        • 19. vendor/laravel/framework/src/Illuminate/Routing/Route.php:260
        • 20. vendor/laravel/framework/src/Illuminate/Routing/Route.php:205
      • select * from `subjects` where `subjects`.`id` in (228)
        1.14mstwenty4_siteHomeworkLibraryController.php#97
        Backtrace
        • 21. app/Http/Controllers/HomeworkLibraryController.php:97
        • 22. vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 23. vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
        • 24. vendor/laravel/framework/src/Illuminate/Routing/Route.php:260
        • 25. vendor/laravel/framework/src/Illuminate/Routing/Route.php:205
      • select * from `solutionslibrary_files` where `solutionslibrary_files`.`solutionlib_id` in (26669)
        1.03mstwenty4_siteHomeworkLibraryController.php#97
        Backtrace
        • 21. app/Http/Controllers/HomeworkLibraryController.php:97
        • 22. vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 23. vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
        • 24. vendor/laravel/framework/src/Illuminate/Routing/Route.php:260
        • 25. vendor/laravel/framework/src/Illuminate/Routing/Route.php:205
      • select * from `subject_cats` where `subject_cats`.`id` = 3 limit 1
        940μstwenty4_siteHomeworkLibrary.php#201
        Bindings
        • 0: 3
        Backtrace
        • 20. app/Models/HomeworkLibrary/HomeworkLibrary.php:201
        • 26. app/Http/Controllers/HomeworkLibraryController.php:105
        • 27. vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 28. vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
        • 29. vendor/laravel/framework/src/Illuminate/Routing/Route.php:260
      • select * from `solutionslibrary` where `id` <> 26669 and `subject` = 228 and `status` = 'published' and `price` > 0 order by RAND() limit 6
        2.2mstwenty4_siteHomeworkLibraryRepository.php#30
        Bindings
        • 0: 26669
        • 1: 228
        • 2: published
        • 3: 0
        Backtrace
        • 14. app/Repositories/HomeworkLibraryRepository.php:30
        • 15. vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 16. vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:419
        • 18. app/Repositories/HomeworkLibraryRepository.php:39
        • 19. app/Http/Controllers/HomeworkLibraryController.php:139
      • select * from `subjects` where `subjects`.`id` in (228)
        1.11mstwenty4_siteHomeworkLibraryRepository.php#30
        Backtrace
        • 19. app/Repositories/HomeworkLibraryRepository.php:30
        • 20. vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 21. vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:419
        • 23. app/Repositories/HomeworkLibraryRepository.php:39
        • 24. app/Http/Controllers/HomeworkLibraryController.php:139
      • select * from `solutionslibrary_files` where `solutionslibrary_files`.`solutionlib_id` = 26669 and `solutionslibrary_files`.`solutionlib_id` is not null and `publish` = 'question' order by `order` asc, `id` asc
        1.15mstwenty4_siteHomeworkLibrary.php#260
        Bindings
        • 0: 26669
        • 1: question
        Backtrace
        • 15. app/Models/HomeworkLibrary/HomeworkLibrary.php:260
        • 16. app/Transformers/HomeworkLibrary/HomeworkLibraryTransformer.php:58
        • 19. vendor/league/fractal/src/TransformerAbstract.php:128
        • 20. vendor/league/fractal/src/TransformerAbstract.php:107
        • 21. vendor/league/fractal/src/Scope.php:383
      • select * from `solutionslibrary_files` where `solutionslibrary_files`.`solutionlib_id` = 26669 and `solutionslibrary_files`.`solutionlib_id` is not null and `publish` = 'teaser' order by `order` asc, `id` asc
        1.23mstwenty4_siteHomeworkLibrary.php#260
        Bindings
        • 0: 26669
        • 1: teaser
        Backtrace
        • 15. app/Models/HomeworkLibrary/HomeworkLibrary.php:260
        • 16. app/Transformers/HomeworkLibrary/HomeworkLibraryTransformer.php:69
        • 19. vendor/league/fractal/src/TransformerAbstract.php:128
        • 20. vendor/league/fractal/src/TransformerAbstract.php:107
        • 21. vendor/league/fractal/src/Scope.php:383
      • select * from `solutionslibrary_files` where `solutionslibrary_files`.`solutionlib_id` = 26669 and `solutionslibrary_files`.`solutionlib_id` is not null and `publish` = 'solution' order by `order` asc, `id` asc
        1.11mstwenty4_siteHomeworkLibrary.php#260
        Bindings
        • 0: 26669
        • 1: solution
        Backtrace
        • 15. app/Models/HomeworkLibrary/HomeworkLibrary.php:260
        • 16. app/Transformers/HomeworkLibrary/HomeworkLibraryTransformer.php:80
        • 19. vendor/league/fractal/src/TransformerAbstract.php:128
        • 20. vendor/league/fractal/src/TransformerAbstract.php:107
        • 21. vendor/league/fractal/src/Scope.php:383
      • select * from `subject_cats` where `subject_cats`.`id` = 3 limit 1
        1.26mstwenty4_siteHomeworkLibrary.php#201
        Bindings
        • 0: 3
        Backtrace
        • 20. app/Models/HomeworkLibrary/HomeworkLibrary.php:201
        • 32. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 33. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
        • 34. vendor/livewire/livewire/src/ComponentConcerns/RendersLivewireComponents.php:69
        • 35. vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70
      App\Models\HomeworkLibrary\HomeworkLibrary
      6HomeworkLibrary.php
      App\Models\HomeworkLibrary\HomeworkLibraryFile
      5HomeworkLibraryFile.php
      App\Models\Subject
      2Subject.php
      App\Models\SubjectCat
      2SubjectCat.php
          _token
          OXE9Dr4zqgJPg4mcpNmJBsjKqsuQfkmAqsn6ShBD
          utm_source
          direct
          redirectUrl
          /college-homework-library/Computer-Science/Parallel-Computing/26669
          _previous
          array:1 [ "url" => "https://staging.dev.24houranswers.com/college-homework-library/Computer-Scienc...
          _flash
          array:2 [ "old" => [] "new" => [] ]
          PHPDEBUGBAR_STACK_DATA
          []
          path_info
          /college-homework-library/Computer-Science/Parallel-Computing/26669
          status_code
          200
          
          status_text
          OK
          format
          html
          content_type
          text/html; charset=UTF-8
          request_query
          []
          
          request_request
          []
          
          request_headers
          0 of 0
          array:21 [ "priority" => array:1 [ 0 => "u=0, i" ] "accept-encoding" => array:1 [ 0 => "gzip, deflate, br, zstd" ] "sec-fetch-dest" => array:1 [ 0 => "document" ] "sec-fetch-user" => array:1 [ 0 => "?1" ] "sec-fetch-mode" => array:1 [ 0 => "navigate" ] "sec-fetch-site" => array:1 [ 0 => "none" ] "accept" => array:1 [ 0 => "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7" ] "user-agent" => array:1 [ 0 => "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" ] "upgrade-insecure-requests" => array:1 [ 0 => "1" ] "sec-ch-ua-platform" => array:1 [ 0 => ""Windows"" ] "sec-ch-ua-mobile" => array:1 [ 0 => "?0" ] "sec-ch-ua" => array:1 [ 0 => ""HeadlessChrome";v="129", "Not=A?Brand";v="8", "Chromium";v="129"" ] "cache-control" => array:1 [ 0 => "no-cache" ] "pragma" => array:1 [ 0 => "no-cache" ] "x-amzn-trace-id" => array:1 [ 0 => "Root=1-680d9692-35e26bbc494ceb382605b017" ] "host" => array:1 [ 0 => "staging.dev.24houranswers.com" ] "x-forwarded-port" => array:1 [ 0 => "443" ] "x-forwarded-proto" => array:1 [ 0 => "https" ] "x-forwarded-for" => array:1 [ 0 => "18.224.200.148" ] "content-length" => array:1 [ 0 => "" ] "content-type" => array:1 [ 0 => "" ] ]
          request_cookies
          []
          
          response_headers
          0 of 0
          array:5 [ "content-type" => array:1 [ 0 => "text/html; charset=UTF-8" ] "cache-control" => array:1 [ 0 => "no-cache, private" ] "date" => array:1 [ 0 => "Sun, 27 Apr 2025 02:29:39 GMT" ] "set-cookie" => array:2 [ 0 => "XSRF-TOKEN=eyJpdiI6IkZ5bUJaZ016cnRGbUt2UlNGdlIyb0E9PSIsInZhbHVlIjoiYWVwdGNoeERTa0FZSm9DZllOczUvaWpqSkFYb2NwV1Q3UnpuUkpTdDJNNWw3ajFMbGsxMzdzWVVId1ZQN3h4d0QzSzRlRHh0N2lrVGU2U1htaEtzcUhwM2F5OEIvbzVqMWVQaDduYzdBKzZFY1cxY1JUays5a1JBdXUwMXNCUE4iLCJtYWMiOiI0NTdiZTQ4MWRiMzg5YjdkMWI0NTgzYTMyY2I4MjM4OWVmNjYzOTYxYmMwZDcxZmUyMDlkYzEwZmFjYTE0ODJlIiwidGFnIjoiIn0%3D; expires=Sun, 27 Apr 2025 04:29:39 GMT; Max-Age=7200; path=/; domain=.24houranswers.com; samesite=laxXSRF-TOKEN=eyJpdiI6IkZ5bUJaZ016cnRGbUt2UlNGdlIyb0E9PSIsInZhbHVlIjoiYWVwdGNoeERTa0FZSm9DZllOczUvaWpqSkFYb2NwV1Q3UnpuUkpTdDJNNWw3ajFMbGsxMzdzWVVId1ZQN3h4d0QzSzRlR" 1 => "24houranswers_session=eyJpdiI6InNUNG1IRmhzTG9RYVhiWGZXbjkxbnc9PSIsInZhbHVlIjoiOWs1RTMyRFBZWWtoMlV2M1daTWJGbnZIckNIZTJ5dG5vWCtBR0wvTmt3b0RLeGxmQnBRbCtianNNdndUbXpOb0txNTYxc2xXa1F4MjdIb1MzZndQWTZpWnZBeHB0eitkdktxNnoxOG5haWVWV3NQRGV5RG0vTlkxVEFjR2xmQ0oiLCJtYWMiOiJhZmMxZTM3MDJmYzAxNzJmNzExZDVhNTFkNWU1ODM3NGQ1ZjAzZWY5ODJkNDYxMTU5MWViMjQ4ODZjNTY5ZWYwIiwidGFnIjoiIn0%3D; expires=Sun, 27 Apr 2025 04:29:39 GMT; Max-Age=7200; path=/; domain=.24houranswers.com; httponly; samesite=lax24houranswers_session=eyJpdiI6InNUNG1IRmhzTG9RYVhiWGZXbjkxbnc9PSIsInZhbHVlIjoiOWs1RTMyRFBZWWtoMlV2M1daTWJGbnZIckNIZTJ5dG5vWCtBR0wvTmt3b0RLeGxmQnBRbCtianNNdndUbX" ] "Set-Cookie" => array:2 [ 0 => "XSRF-TOKEN=eyJpdiI6IkZ5bUJaZ016cnRGbUt2UlNGdlIyb0E9PSIsInZhbHVlIjoiYWVwdGNoeERTa0FZSm9DZllOczUvaWpqSkFYb2NwV1Q3UnpuUkpTdDJNNWw3ajFMbGsxMzdzWVVId1ZQN3h4d0QzSzRlRHh0N2lrVGU2U1htaEtzcUhwM2F5OEIvbzVqMWVQaDduYzdBKzZFY1cxY1JUays5a1JBdXUwMXNCUE4iLCJtYWMiOiI0NTdiZTQ4MWRiMzg5YjdkMWI0NTgzYTMyY2I4MjM4OWVmNjYzOTYxYmMwZDcxZmUyMDlkYzEwZmFjYTE0ODJlIiwidGFnIjoiIn0%3D; expires=Sun, 27-Apr-2025 04:29:39 GMT; domain=.24houranswers.com; path=/XSRF-TOKEN=eyJpdiI6IkZ5bUJaZ016cnRGbUt2UlNGdlIyb0E9PSIsInZhbHVlIjoiYWVwdGNoeERTa0FZSm9DZllOczUvaWpqSkFYb2NwV1Q3UnpuUkpTdDJNNWw3ajFMbGsxMzdzWVVId1ZQN3h4d0QzSzRlR" 1 => "24houranswers_session=eyJpdiI6InNUNG1IRmhzTG9RYVhiWGZXbjkxbnc9PSIsInZhbHVlIjoiOWs1RTMyRFBZWWtoMlV2M1daTWJGbnZIckNIZTJ5dG5vWCtBR0wvTmt3b0RLeGxmQnBRbCtianNNdndUbXpOb0txNTYxc2xXa1F4MjdIb1MzZndQWTZpWnZBeHB0eitkdktxNnoxOG5haWVWV3NQRGV5RG0vTlkxVEFjR2xmQ0oiLCJtYWMiOiJhZmMxZTM3MDJmYzAxNzJmNzExZDVhNTFkNWU1ODM3NGQ1ZjAzZWY5ODJkNDYxMTU5MWViMjQ4ODZjNTY5ZWYwIiwidGFnIjoiIn0%3D; expires=Sun, 27-Apr-2025 04:29:39 GMT; domain=.24houranswers.com; path=/; httponly24houranswers_session=eyJpdiI6InNUNG1IRmhzTG9RYVhiWGZXbjkxbnc9PSIsInZhbHVlIjoiOWs1RTMyRFBZWWtoMlV2M1daTWJGbnZIckNIZTJ5dG5vWCtBR0wvTmt3b0RLeGxmQnBRbCtianNNdndUbX" ] ]
          session_attributes
          0 of 0
          array:6 [ "_token" => "OXE9Dr4zqgJPg4mcpNmJBsjKqsuQfkmAqsn6ShBD" "utm_source" => "direct" "redirectUrl" => "/college-homework-library/Computer-Science/Parallel-Computing/26669" "_previous" => array:1 [ "url" => "https://staging.dev.24houranswers.com/college-homework-library/Computer-Science/Parallel-Computing/26669" ] "_flash" => array:2 [ "old" => [] "new" => [] ] "PHPDEBUGBAR_STACK_DATA" => [] ]